In [1]:
import pandas as pd
In [2]:
ui_movies = pd.read_csv("usa_indian_movies_df.csv")
ui_movies
Out[2]:
imdb_title_id title year date_published genre language country director writer actors production_company description weighted_average_vote
0 tt1014463 Kate & Leopold(English) 2001 2002-03-01 Comedy, Fantasy, Romance English USA James Mangold Steven Rogers, James Mangold Meg Ryan, Hugh Jackman, Liev Schreiber, Brecki... Konrad Pictures An English Duke from 1876 is inadvertedly drag... 6.4
1 tt1896309 Kate & Leopold(French) 2001 2002-03-01 Comedy, Fantasy, Romance French USA James Mangold Steven Rogers, James Mangold Meg Ryan, Hugh Jackman, Liev Schreiber, Brecki... Konrad Pictures An English Duke from 1876 is inadvertedly drag... 6.4
2 tt0081145 Harry e Carota 1993 1993-10-22 Comedy, Crime, Drama English USA Dan Curtis Stanley Cohen, Richard Tannenbaum Danny Aiello, Alex Zuckerman, Joe Pantoliano, ... Dan Curtis Productions A lonely and emotionally neglected rich kid fo... 5.4
3 tt0088751 The Naked Monster 2005 2005-04-22 Comedy, Horror, Sci-Fi English USA Wayne Berwick, Ted Newsom Ted Newsom Kenneth Tobey, Brinke Stevens, R.G. Wilson, Jo... Heidelberg Films A brain-dead sheriff, a stolid secret agent an... 5.4
4 tt0094900 Committed 1991 1991-04-18 Drama, Thriller English USA William A. Levey Susan Claudia, Simon Last Jennifer O'Neill, Robert Forster, William Wind... World Wide Entertainment A nurse is taken hostage by a patient pretendi... 5.1
... ... ... ... ... ... ... ... ... ... ... ... ... ...
23180 tt9900782 Kaithi 2019 2019-10-25 Action, Thriller Tamil India Lokesh Kanagaraj Lokesh Kanagaraj, Pon Parthiban Karthi, Narain, Ramana, George Maryan, Harish ... Dream Warrior Pictures A recently released prisoner becomes involved ... 8.5
23181 tt9903716 Jessie 2019 2019-03-15 Horror, Thriller Telugu India Aswani Kumar V. Aswani Kumar V. Ashima Narwal, Sritha Chandana, Atul Kulkarni,... Ekaa Art Production Set in an abandoned house, the film follows a ... 7.0
23182 tt9905412 Ottam 2019 2019-03-08 Drama Malayalam India Zam Rajesh k Narayan Nandu Anand, Roshan Ullas, Manikandan R. Achar... Thomas Thiruvalla Films Set in Trivandrum, the story of Ottam unfolds ... 7.4
23183 tt9905462 Pengalila 2019 2019-03-08 Drama Malayalam India T.V. Chandran T.V. Chandran Lal, Akshara Kishor, Iniya, Narain, Renji Pani... Benzy Productions An unusual bond between a sixty year old Dalit... 8.8
23184 tt9906644 Manoharam 2019 2019-09-27 Comedy, Drama Malayalam India Anvar Sadik NaN Vineeth Sreenivasan, Aparna Das, Basil Joseph,... chakkalakal Films Manoharan is a poster artist struggling to fin... 6.8

23185 rows × 13 columns

In [3]:
from collections import Counter
genre_dict = dict(Counter(ui_movies["genre"].astype(str).str.split(", ").explode()))
genre_dict
Out[3]:
{'Comedy': 8135,
 'Fantasy': 974,
 'Romance': 3960,
 'Crime': 3108,
 'Drama': 11963,
 'Horror': 3572,
 'Sci-Fi': 1245,
 'Thriller': 4736,
 'Action': 4962,
 'Mystery': 1580,
 'Music': 370,
 'Western': 180,
 'Adventure': 1586,
 'Family': 1185,
 'War': 168,
 'Biography': 531,
 'Musical': 384,
 'Sport': 388,
 'Animation': 408,
 'History': 261,
 'News': 1,
 'Reality-TV': 1}

Creating dummy variables using the dict with assigning 0

In [4]:
genre_df = {"genre":[], "count":[]}
for key, value in genre_dict.items():
    genre_df["genre"].append(key)
    genre_df["count"].append(value)
pd.DataFrame(genre_df)
Out[4]:
genre count
0 Comedy 8135
1 Fantasy 974
2 Romance 3960
3 Crime 3108
4 Drama 11963
5 Horror 3572
6 Sci-Fi 1245
7 Thriller 4736
8 Action 4962
9 Mystery 1580
10 Music 370
11 Western 180
12 Adventure 1586
13 Family 1185
14 War 168
15 Biography 531
16 Musical 384
17 Sport 388
18 Animation 408
19 History 261
20 News 1
21 Reality-TV 1
In [5]:
ui_movies_dummy  = ui_movies.assign(**dict.fromkeys(genre_dict.keys(), 0))
ui_movies_dummy
Out[5]:
imdb_title_id title year date_published genre language country director writer actors ... Adventure Family War Biography Musical Sport Animation History News Reality-TV
0 tt1014463 Kate & Leopold(English) 2001 2002-03-01 Comedy, Fantasy, Romance English USA James Mangold Steven Rogers, James Mangold Meg Ryan, Hugh Jackman, Liev Schreiber, Brecki... ... 0 0 0 0 0 0 0 0 0 0
1 tt1896309 Kate & Leopold(French) 2001 2002-03-01 Comedy, Fantasy, Romance French USA James Mangold Steven Rogers, James Mangold Meg Ryan, Hugh Jackman, Liev Schreiber, Brecki... ... 0 0 0 0 0 0 0 0 0 0
2 tt0081145 Harry e Carota 1993 1993-10-22 Comedy, Crime, Drama English USA Dan Curtis Stanley Cohen, Richard Tannenbaum Danny Aiello, Alex Zuckerman, Joe Pantoliano, ... ... 0 0 0 0 0 0 0 0 0 0
3 tt0088751 The Naked Monster 2005 2005-04-22 Comedy, Horror, Sci-Fi English USA Wayne Berwick, Ted Newsom Ted Newsom Kenneth Tobey, Brinke Stevens, R.G. Wilson, Jo... ... 0 0 0 0 0 0 0 0 0 0
4 tt0094900 Committed 1991 1991-04-18 Drama, Thriller English USA William A. Levey Susan Claudia, Simon Last Jennifer O'Neill, Robert Forster, William Wind... ... 0 0 0 0 0 0 0 0 0 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
23180 tt9900782 Kaithi 2019 2019-10-25 Action, Thriller Tamil India Lokesh Kanagaraj Lokesh Kanagaraj, Pon Parthiban Karthi, Narain, Ramana, George Maryan, Harish ... ... 0 0 0 0 0 0 0 0 0 0
23181 tt9903716 Jessie 2019 2019-03-15 Horror, Thriller Telugu India Aswani Kumar V. Aswani Kumar V. Ashima Narwal, Sritha Chandana, Atul Kulkarni,... ... 0 0 0 0 0 0 0 0 0 0
23182 tt9905412 Ottam 2019 2019-03-08 Drama Malayalam India Zam Rajesh k Narayan Nandu Anand, Roshan Ullas, Manikandan R. Achar... ... 0 0 0 0 0 0 0 0 0 0
23183 tt9905462 Pengalila 2019 2019-03-08 Drama Malayalam India T.V. Chandran T.V. Chandran Lal, Akshara Kishor, Iniya, Narain, Renji Pani... ... 0 0 0 0 0 0 0 0 0 0
23184 tt9906644 Manoharam 2019 2019-09-27 Comedy, Drama Malayalam India Anvar Sadik NaN Vineeth Sreenivasan, Aparna Das, Basil Joseph,... ... 0 0 0 0 0 0 0 0 0 0

23185 rows × 35 columns

In [6]:
for index, row in ui_movies_dummy.iterrows():
    for i in row["genre"].split(", "):
        ui_movies_dummy[i][index] = 1
ui_movies_dummy
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.

Current values:
NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
NotebookApp.rate_limit_window=3.0 (secs)

C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
C:\Users\Dell\AppData\Local\Temp\ipykernel_25056\2762759966.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  ui_movies_dummy[i][index] = 1
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.

Current values:
NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
NotebookApp.rate_limit_window=3.0 (secs)

Out[6]:
imdb_title_id title year date_published genre language country director writer actors ... Adventure Family War Biography Musical Sport Animation History News Reality-TV
0 tt1014463 Kate & Leopold(English) 2001 2002-03-01 Comedy, Fantasy, Romance English USA James Mangold Steven Rogers, James Mangold Meg Ryan, Hugh Jackman, Liev Schreiber, Brecki... ... 0 0 0 0 0 0 0 0 0 0
1 tt1896309 Kate & Leopold(French) 2001 2002-03-01 Comedy, Fantasy, Romance French USA James Mangold Steven Rogers, James Mangold Meg Ryan, Hugh Jackman, Liev Schreiber, Brecki... ... 0 0 0 0 0 0 0 0 0 0
2 tt0081145 Harry e Carota 1993 1993-10-22 Comedy, Crime, Drama English USA Dan Curtis Stanley Cohen, Richard Tannenbaum Danny Aiello, Alex Zuckerman, Joe Pantoliano, ... ... 0 0 0 0 0 0 0 0 0 0
3 tt0088751 The Naked Monster 2005 2005-04-22 Comedy, Horror, Sci-Fi English USA Wayne Berwick, Ted Newsom Ted Newsom Kenneth Tobey, Brinke Stevens, R.G. Wilson, Jo... ... 0 0 0 0 0 0 0 0 0 0
4 tt0094900 Committed 1991 1991-04-18 Drama, Thriller English USA William A. Levey Susan Claudia, Simon Last Jennifer O'Neill, Robert Forster, William Wind... ... 0 0 0 0 0 0 0 0 0 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
23180 tt9900782 Kaithi 2019 2019-10-25 Action, Thriller Tamil India Lokesh Kanagaraj Lokesh Kanagaraj, Pon Parthiban Karthi, Narain, Ramana, George Maryan, Harish ... ... 0 0 0 0 0 0 0 0 0 0
23181 tt9903716 Jessie 2019 2019-03-15 Horror, Thriller Telugu India Aswani Kumar V. Aswani Kumar V. Ashima Narwal, Sritha Chandana, Atul Kulkarni,... ... 0 0 0 0 0 0 0 0 0 0
23182 tt9905412 Ottam 2019 2019-03-08 Drama Malayalam India Zam Rajesh k Narayan Nandu Anand, Roshan Ullas, Manikandan R. Achar... ... 0 0 0 0 0 0 0 0 0 0
23183 tt9905462 Pengalila 2019 2019-03-08 Drama Malayalam India T.V. Chandran T.V. Chandran Lal, Akshara Kishor, Iniya, Narain, Renji Pani... ... 0 0 0 0 0 0 0 0 0 0
23184 tt9906644 Manoharam 2019 2019-09-27 Comedy, Drama Malayalam India Anvar Sadik NaN Vineeth Sreenivasan, Aparna Das, Basil Joseph,... ... 0 0 0 0 0 0 0 0 0 0

23185 rows × 35 columns

In [7]:
ui_movies_dummy
Out[7]:
imdb_title_id title year date_published genre language country director writer actors ... Adventure Family War Biography Musical Sport Animation History News Reality-TV
0 tt1014463 Kate & Leopold(English) 2001 2002-03-01 Comedy, Fantasy, Romance English USA James Mangold Steven Rogers, James Mangold Meg Ryan, Hugh Jackman, Liev Schreiber, Brecki... ... 0 0 0 0 0 0 0 0 0 0
1 tt1896309 Kate & Leopold(French) 2001 2002-03-01 Comedy, Fantasy, Romance French USA James Mangold Steven Rogers, James Mangold Meg Ryan, Hugh Jackman, Liev Schreiber, Brecki... ... 0 0 0 0 0 0 0 0 0 0
2 tt0081145 Harry e Carota 1993 1993-10-22 Comedy, Crime, Drama English USA Dan Curtis Stanley Cohen, Richard Tannenbaum Danny Aiello, Alex Zuckerman, Joe Pantoliano, ... ... 0 0 0 0 0 0 0 0 0 0
3 tt0088751 The Naked Monster 2005 2005-04-22 Comedy, Horror, Sci-Fi English USA Wayne Berwick, Ted Newsom Ted Newsom Kenneth Tobey, Brinke Stevens, R.G. Wilson, Jo... ... 0 0 0 0 0 0 0 0 0 0
4 tt0094900 Committed 1991 1991-04-18 Drama, Thriller English USA William A. Levey Susan Claudia, Simon Last Jennifer O'Neill, Robert Forster, William Wind... ... 0 0 0 0 0 0 0 0 0 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
23180 tt9900782 Kaithi 2019 2019-10-25 Action, Thriller Tamil India Lokesh Kanagaraj Lokesh Kanagaraj, Pon Parthiban Karthi, Narain, Ramana, George Maryan, Harish ... ... 0 0 0 0 0 0 0 0 0 0
23181 tt9903716 Jessie 2019 2019-03-15 Horror, Thriller Telugu India Aswani Kumar V. Aswani Kumar V. Ashima Narwal, Sritha Chandana, Atul Kulkarni,... ... 0 0 0 0 0 0 0 0 0 0
23182 tt9905412 Ottam 2019 2019-03-08 Drama Malayalam India Zam Rajesh k Narayan Nandu Anand, Roshan Ullas, Manikandan R. Achar... ... 0 0 0 0 0 0 0 0 0 0
23183 tt9905462 Pengalila 2019 2019-03-08 Drama Malayalam India T.V. Chandran T.V. Chandran Lal, Akshara Kishor, Iniya, Narain, Renji Pani... ... 0 0 0 0 0 0 0 0 0 0
23184 tt9906644 Manoharam 2019 2019-09-27 Comedy, Drama Malayalam India Anvar Sadik NaN Vineeth Sreenivasan, Aparna Das, Basil Joseph,... ... 0 0 0 0 0 0 0 0 0 0

23185 rows × 35 columns

In [8]:
ui_movies_dummy.to_csv("ui_movies_dummy.csv", index=False)
Pickle files creation for description of USA Indian Dataset: Description pickle ipynb file & Description pickle html file¶